home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
program
/
ctlib100.zip
/
INSTALL.LZH
/
BSDPROCS.INT
< prev
next >
Wrap
Text File
|
1996-10-12
|
1KB
|
46 lines
{**************************************************************************}
{* BitSoft Development, L.L.C. *}
{* Copyright (C) 1995, 1996 BitSoft Development, L.L.C. *}
{* All rights reserved. *}
{* Global procedures unit *}
{* version 1.1.0 *}
{**************************************************************************}
unit BsdProcs;
{$X+}
interface
uses Objects, BsdTypes,
{$ifdef Windows}
WinDos
{$else}
Dos
{$endif Windows};
{$ifdef Windows}
procedure BiosIntr (AInterrupt : Word; ARegs : TRegisters);
{$else}
procedure BiosIntr (AInterrupt : Word; ARegs : Registers);
{$endif Windows}
function CallerFrame : Word;
function CompareStr (Str1, Str2 : String) : Integer;
function CompareIStr (Str1, Str2 : String) : Integer;
procedure DisposeObject (AObject : PObject);
procedure DisposeString (AString : PString);
procedure FreeMemory (Buffer : Pointer; BufferSize : Word);
function StrPNew (Str : String) : PChar;
function UpperStr (Str : String) : String;
implementation
end.